home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000059_news@columbia.edu_Fri Dec 8 03:34:55 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06486
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Fri, 8 Dec 1995 07:47:07 -0500
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id HAA10867 for kermit.misc@watsun; Fri, 8 Dec 1995 07:47:05 -0500
  4. Path: news.columbia.edu!panix!bloom-beacon.mit.edu!apollo.hp.com!lf.hp.com!news.dtc.hp.com!col.hp.com!usenet.eel.ufl.edu!news.mathworks.com!news.kei.com!newsstand.cit.cornell.edu!newsfeed.cit.cornell.edu!newstand.syr.edu!usenet
  5. From: vefatica@syr.edu (Vincent Fatica)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Write-file produces continuous record
  8. Date: Fri, 08 Dec 1995 03:34:55 GMT
  9. Organization: Syracuse University
  10. Lines: 25
  11. Message-Id: <30c7b092.18351316@128.230.1.4>
  12. References: <Pine.ULT.3.91.951204131848.1986A-100000@chinook.halcyon.com>
  13. Reply-To: vefatica@syr.edu
  14. Nntp-Posting-Host: sudial4-040.syr.edu
  15. X-Newsreader: Forte Agent .99c/16.141
  16. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  17.  
  18. KeithM <kmhouse@halcyon.com> wrote:
  19.  
  20. >When the file is displayed on the screen, all the lines are run together.  
  21. >Does anyone know how to write to a DOS file so that each WRITE FILE 
  22. >produces a separate line?
  23.  
  24. You need tell Kermit to put CR-LF (\13\10) where you want them, as in:
  25.  
  26.     write file stuff\13\10
  27.  
  28. This necessity is actually a feature, since it allows writing a single line
  29. in several parts, as in:
  30.  
  31.     write file people:
  32.     (later)
  33.     write file Tom
  34.     write file Dick
  35.     write file Harry\13\10
  36.  
  37.  - Vince
  38. *************************************
  39.    Vincent Fatica
  40.    Syracuse University Mathematics
  41.    vefatica@syr.edu
  42. *************************************